cf2dc6bb5b0e290036597219b0b92d16cd5f269c,modules/flowable5-test/src/test/java/org/activiti/standalone/escapeclause/ExecutionQueryEscapeClauseTest.java,ExecutionQueryEscapeClauseTest,testQueryLikeIgnoreCaseByQueryProcessVariableValue,#,104

Before Change


  }
  
  public void testQueryLikeIgnoreCaseByQueryProcessVariableValue() {
    Execution execution = runtimeService.createExecutionQuery().onlyChildExecutions().processVariableValueLikeIgnoreCase("var1", "%\\%%").singleResult();
    assertNotNull(execution);
    
    execution = runtimeService.createExecutionQuery().onlyChildExecutions().processVariableValueLikeIgnoreCase("var1", "%\\_%").singleResult();

After Change


  }
  
  public void testQueryLikeIgnoreCaseByQueryProcessVariableValue() {
    Execution execution = runtimeService.createExecutionQuery().processVariableValueLikeIgnoreCase("var1", "%\\%%").singleResult();
    assertNotNull(execution);
    
    execution = runtimeService.createExecutionQuery().processVariableValueLikeIgnoreCase("var1", "%\\_%").singleResult();